/*初始化样式*/
html {
    margin: 0;
    padding: 0;
    border: 0;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: #fff;
    color: #666;
    position: relative;
    font: 12px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
    vertical-align: baseline;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    outline: none;
}

a:link {
    color: #666;
}

a:visited {
    color: #666;
}

a:hover,
a:active,
a:focus {
    color: #009b4c;
    text-decoration: none;
    outline: none;
}

p {
    margin: 0;
}

input {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
    background: none;
    vertical-align: middle;
}

ul,
ol,
li {
    list-style-type: none;
}

select,
input,
img,
select {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

table,
th,
td {
    vertical-align: middle
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.clearfix {
    zoom: 1
}

.clearboth {
    height: 0px;
    line-height: 0px;
    overflow: hidden;
    clear: both;
    font-size: 0px;
}

h1,
h2,
h3,
h4 {
    font-size: 12px;
    font-weight: bold;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    height: 0;
}

dt {
    font-weight: normal;
}

/*----- Common css ------*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flexd {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wh {
    width: 1200px;
    margin: 0 auto;
}

.pos {
    position: relative;
    width: 1920px;
    left: 50%;
    margin-left: -960px;
}

.com-img {
    display: inline;
    overflow: hidden;
    margin: 0 auto;
    display: table;
}

.com-img img {
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.com-img:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}


.index {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.index .left_content {
    width: 306px;
    height: 100vh;
    position: relative;
}


.index .top1 {
    width: 260px;
    height: 100vh;
    background-color: rgb(155 206 251);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.21);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.4rem 0 5rem;
    flex-wrap: nowrap;
}



.index .right_content {
    width: calc(100% - 260px);
}







.logo {
    height: 7rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}




/* 导航样式 */
.x-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex: 1;
    padding: 0 0.45rem 0 0.2rem;
    margin-top: 2.5rem;
    width: 100%;
}

.x-menu>li {
    position: relative;
    flex: 1;
    width: 100%;
}

.x-menu>li>a {
    display: flex;
    font-size: 20px;
    color: #ffffff;
    width: 100%;
    height: 100%;
    background: url(../images/tt1.png) repeat-x bottom center;
    justify-content: center;
    align-items: center;
}

.x-menu>li:first-child>a {
    background: url(../images/tt1.png) repeat-x bottom center, url(../images/tt1.png) repeat-x top center;
}

.x-menu>li>a img.jiao {
    opacity: 0;
    transition: all ease .3s;
    width: 8px;
    height: 17px;
    margin-left: 10px;
}

.x-menu>li:hover>a img.jiao {
    opacity: 1;
}



.x-menu>li>a:hover {
    background-color: #ff8a0000;
}

.x-menu>li.active>a {}

.x-menu>li:after {
    content: '';
    position: absolute;
    z-index: 100;
    width: 100%;
    left: 0;
    /*height: 40px;*/
    opacity: 0;
    top: 100%;
}

.x-menu>li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
}

.x-sub-menu {
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 0%;
    top: 60px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    display: none;
}

.x-sub-menu>li {
    /* padding: 0 0.9rem; */
}

.x-sub-menu>li>a {
    display: block;
    text-align: center;
    line-height: 2;
    font-size: 14px;
    color: #666666;
    line-height: 2.6;
}

.x-sub-menu>li>a:hover {
    background: #019350;
    color: #fff;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
    display: none;
}


@media(max-width: 1440px) {
    .index .left_content {
        width: 230px;
    }

    .index .top1 {
        padding: 1rem 0 2rem;
        width: 230px;
    }

    .index .right_content {
        width: calc(100% - 230px);
    }

    .x-menu {
        margin-top: 1.8rem;
    }

    .x-menu>li>a {
        font-size: 16px;
    }
}

@media(max-width: 1366px) {
    .logo {
        height: 6rem;
    }
}

@media(max-width: 992px) {
    .index {
        display: block;
    }

    .index .left_content {
        width: 0px;
        height: 0px;
    }

    .index .top1 {
        display: none;
    }

    .index .right_content {
        width: 100%;
    }
}





.index-title {
    text-align: center;
}


.index-title h3 {
    font-size: 1.63rem;
    color: #333333;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.index-title p {
    font-size: 0.91rem;
    font-weight: normal;
    color: #999999;
    position: relative;
    line-height: 1;
}

.index-title p::after {
    content: "";
    width: 2.8rem;
    height: 0.25rem;
    background-image: linear-gradient(90deg,
            rgb(155 206 251) 0%,
            rgb(155 206 251) 100%),
        linear-gradient(#fafafa,
            #fafafa);
    background-blend-mode: normal,
        normal;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
}


.wh1330 {
    max-width: 1360px;
    padding: 0 15px;
    margin: 0 auto;
}


.p1 {
    padding: 5.2rem 0 5.1rem;
}

.p1a {
    background-color: #f5f5f5;
    margin-top: 2.9rem;
}

.p1a li {
    flex: 1;
}

.p1a li a {
    display: block;
    width: 100%;
    line-height: 2.5rem;
    font-size: 0.81rem;
    font-weight: normal;
    color: #666666;
    text-align: center;
    transition: all ease .3s;
    border-radius: 3px;
}


.p1a li:hover a {
    box-shadow: 0rem 0.15rem 0.9rem 0rem rgba(57, 57, 57, 0.21);
    background: #fff;
    font-weight: 700;
    color: #007aff;
}


.p1b {
    margin-top: 2.05rem;
}

.p1b li {
    width: 23.3%;
}

.p1b li a {
    display: block;
}

.p1b li a div.img {
    overflow: hidden;
    transition: all ease .3s;
}

.p1b li a div.img img {
    width: 100%;
    transition: all ease .3s;
}

.p1b li:hover a div.img img {
    transform: scale(1.1);
}

.p1b li:hover div.img {
    box-shadow: 0rem 0.15rem 0.9rem 0rem #f2f2f2;
}





.p1b li a>h3 {
    font-size: 13.69px;
    font-weight: normal;
    color: #333333;
    margin: 12px 0 1rem;
    text-align: center;
}

.p1b li:nth-last-child(-n+4) a>h3 {
    margin: 12px 0 0;
}



@media(max-width: 768px) {
    .p1a li {
        flex: initial;
        width: 20%;
    }

    .p1b li {
        width: 49.3%;
    }
}



@media(max-width: 767px) {
    .p1a {
        display: none;
    }

    .p1b {
        margin-top: 4rem;
    }

    .index-title h3 {
        font-size: 22px;
    }

    .index-title p {
        font-size: 14px;
    }

    .index-title p::after {
        bottom: -1.4rem;
    }

    .p1b li a>h3 {
        margin: 12px 0 1.5rem;
    }
}




.p2 {
    position: relative;
}

.p2cont .p2a {
    width: 49.256%;
    background: url(../images/bj11.jpg) no-repeat center center;
    background-size: cover;
    color: #2f2f2f;
    padding: 9.8rem 5.3rem 1rem 3rem;
}

.p2cont .p2a .p2a1>h3 {
    font-size: 1.8rem;
    margin-bottom: 1.1rem;
    line-height: 1;
}

.p2cont .p2a .p2a1>h4 {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 1.9rem;
}

.p2cont .p2a .p2a2>p {
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.66;
    color: #ffffff;
}


.p2cont .p2a .p2a2 a.more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 211px;
    height: 55px;
    line-height: 55px;
    border: solid 1px #2f2f2f;
    padding: 0 30px 0 40px;
    margin-top: 2.3rem;
}

.p2cont .p2a .p2a2 a.more span {
    font-size: 16px;
    font-weight: normal;
    color: #2f2f2f;
}



.p2cont .p2b {
    width: 50.744%;
    overflow: hidden;
}

.p2cont .p2b img {
    width: 100%;
    transition: all ease .3s;
}

.p2cont .p2b:hover img {
    transform: scale(1.1);
}



.p2num {
    width: 91%;
    background-color: #ffffff;
    box-shadow: 0px 2px 0px 0px #007aff;
    position: absolute;
    bottom: 8.3rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 17px 0;
}

.p2num li {
    flex: 1;
}

.p2num li+li {
    border-left: 2px solid #e1e1e1;
}

.p2num li a {
    padding: 0.8rem 0 0.5rem;
    display: block;
    width: 100%;
    height: 100%;
}

.p2num li a .conta {
    justify-content: center;
    align-items: flex-end;
}

.p2num li a .conta h3.counter {
    font-family: "Impact";
    font-size: 2.5rem;
    color: #007aff;
    line-height: 1;
    margin-right: 0.4rem;
}

.p2num li a .conta .conta1 {
    transform: translateY(-5px);
}

.p2num li a .conta .conta1 dd {
    font-size: 1.8rem;
    color: #007aff;
    line-height: 1;
    font-weight: 700;
}


.p2num li a .conta .conta1 h4 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #333333;
    line-height: 1;
}

.p2num li a p {
    font-size: 0.9rem;
    font-weight: normal;
    color: #333333;
    text-align: center;
    margin-top: 0.4rem;
}


@media(max-width: 1600px) {
    .p2cont .p2a {
        padding: 4.8rem 2.3rem 1rem 2rem;
    }

    .p2num {
        bottom: 2.3rem;
    }
}

@media(max-width: 1440px) {
    .p2cont .p2a {
        padding: 2rem 2rem 1rem 2rem;
    }

    .p2cont .p2a .p2a1>h4 {
        margin-bottom: 1rem;
    }

    .p2cont .p2a .p2a2 a.more {
        margin-top: 1.5rem;
    }

    .p2cont .p2a .p2a2>p {
        font-size: 16px;
    }

    .p2num {
        bottom: 1rem;
    }
}

@media(max-width: 1280px) {
    .p2num li a {
        padding: 0.5rem 0;
    }
}

@media(max-width: 1024px) {
    .p2num {
        display: none;
    }
}

@media(max-width: 768px) {
    .p2cont .p2b {
        width: 100%;
        order: 1;
    }

    .p2cont .p2a {
        width: 100%;
        order: 2;
        padding: 3rem 15px;
    }

    .p2num {
        display: none;
    }

}

@media(max-width: 767px) {
    .p2cont .p2a {
        padding: 5rem 15px;
    }

    .p2cont .p2a .p2a1>h3 {
        font-size: 22px;
    }

    .p2cont .p2a .p2a1>h4 {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .p2cont .p2a .p2a2>p {
        font-size: 13px;
        line-height: 1.8;
    }

    .p2cont .p2a .p2a2 a.more {
        width: 156px;
        height: 43px;
        line-height: 43px;
        padding: 0px 16px 0 19px;
        margin-top: 3.5rem;
    }

    .p2cont .p2a .p2a2 a.more span {
        font-size: 14px;
    }
}



.wh1368 {
    max-width: 1398px;
    padding: 0 15px;
    margin: 0 auto;
}

.p3 {
    background-color: #f7f7f7;
    padding: 3.95rem 0 2.25rem;
}

.p3-title {
    width: 513px;
    height: 90px;
    background-color: rgb(155 206 251);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    margin: 0 auto;
}

.p3-title>h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.p3-title>p {
    font-size: 0.75rem;
    font-weight: normal;
}




.p3a {
    margin-top: 2.85rem;
}

.p3cont {
    padding-bottom: 1.25rem;
}

.p3cont .img {
    width: 43.64%;
    overflow: hidden;
}

.p3cont .img img {
    width: 100%;
    transition: all ease .3s;
}

.p3cont .img:hover img {
    transform: scale(1.1);
}

.p3cont .cont {
    width: 42.4%;
    align-self: center;
}

.p3cont .cont h3 {
    font-size: 1.12rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.p3cont .cont .conta li {
    width: 31.37%;
    margin-bottom: 1rem;
}

.p3cont .cont .conta li a {
    display: block;
    font-size: 1.01rem;
    font-weight: normal;
    color: #333333;
    line-height: 2.25rem;
    background-color: #ededed;
    text-align: center;

}

.p3cont .cont .conta li:nth-last-child(-n+3) {
    margin-bottom: 0;
}

.p3cont .line {
    width: 13px;
    position: relative;
}

.p3cont .line::after {
    content: "";
    width: 100%;
    height: calc(100% + 6rem);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(155 206 251);
    z-index: 11;
}

.p3cont:last-child .line::after {
    height: calc(100% + 3rem);
}

.p3cont .line .line-text {
    width: 6.05rem;
    height: 6.1rem;
    border-radius: 50%;
    background-color: rgb(155 206 251);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}


.p3cont .line .line-text>h3 {
    font-family: "Impact";
    font-size: 1.68rem;
}

.p3cont .line .line-text>p {
    font-size: 1.12rem;
    font-weight: normal;
}



.p3a2 .line .line-text {
    width: 4.75rem;
    height: 4.75rem;
    background-color: rgb(155 206 251);
}

.p3a2 .line .line-text>h3 {
    font-size: 1.49rem;
}

.p3a2 .line .line-text>p {
    font-size: 0.84rem;
}

.p3a3 .line::before {
    content: "";
    width: 2.65rem;
    height: 2.45rem;
    background: url(../images/tt5.png) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

.p3a2 .cont {
    width: 43.64%;
}

.p3a2 .cont .conta li {
    width: 23.95%;
}

.p3a2 .cont .conta li a {
    font-size: 0.94rem;
    font-weight: normal;
    color: #333333;
}

.p3a2 .img {
    width: 42.4%;
}

.p3a3 .cont>p {
    font-size: 0.84rem;
    color: #444444;
    line-height: 2.1;
}

.p3a3 .cont>p:nth-of-type(1) {
    font-size: 0.93rem;
    font-weight: 700;
    color: #007aff;
}

.p3a3 .cont a.inquiry {
    display: block;
    width: calc(100% - 1.5rem);
    line-height: 2.85rem;
    background-color: rgb(155 206 251);
    border-radius: 1.23rem;
    font-size: 0.93rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-top: 0.8rem;
}


@media(max-width: 1280px) {
    .p3cont .cont .conta li a {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .p3a2 .cont .conta li a {
        font-size: 14px;
    }

    .p3cont .cont h3 {
        margin-bottom: 0.4rem;
    }
}

@media(max-width: 768px) {
    .p3cont .line {
        display: none;
    }

    .p3cont .img {
        width: 100%;
        order: 1;
        margin-bottom: 2rem;
    }

    .p3cont .cont {
        width: 100%;
        order: 2;
    }

    .p3cont .cont h3 {
        margin-bottom: 1.4rem;
    }
}


@media(max-width: 767px) {
    .p3-title {
        width: 100%;
        padding: 2rem 0;
        height: auto;
    }

    .p3-title>h3 {
        font-size: 21px;
        margin-bottom: 0.7rem;
    }

    .p3-title>p {
        font-size: 14px;
    }

    .p3cont .cont h3 {
        font-size: 17px;
    }

    .p3cont .cont .conta li a {
        line-height: 3.4rem;
    }

    .p3a3 .cont>p:nth-of-type(1) {
        font-size: 15px;
    }

    .p3a3 .cont>p {
        font-size: 14px;
        line-height: 1.7;
    }

    .p3a3 .cont a.inquiry {
        font-size: 16px;
        line-height: 3.6rem;
    }
}



.wh1370 {
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
}

.p4 {
    padding: 4.55rem 0 5.4rem;
}

.p4a {
    margin-top: 4.05rem;
}

.p4a li a {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.p4a li a h3 {
    background: rgba(0, 0, 0, .3);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 400;
    color: #fff;
}

.p4a li a img {
    width: 100%;
    transition: all ease .3s;
}

.p4a li a:hover img {
    transform: scale(1.1);
}

.p4a .p4a1 {
    width: 54.7%;
    align-content: space-between;
}

.p4a .p4a1 li {
    width: 49.2%;
}

.p4a .p4a1 li a h3 {
    font-size: 1.54rem;
    line-height: 2.85rem;
}

.p4a .p4a2 {
    width: 44.233%;
}

.p4a .p4a2 li {
    display: block;
    width: 100%;
    height: 100%;
}

.p4a .p4a2 li a h3 {
    font-size: 1.54rem;
    line-height: 4.15rem;
}

@media(max-width: 768px) {
    .p4a .p4a2 {
        display: none;
    }

    .p4a .p4a1 {
        width: 100%;
    }

    .p4a .p4a1 li {
        margin-bottom: 2%;
    }
}

@media(max-width: 767px) {

    .p4a .p4a1 li a h3 {
        line-height: 3.7rem;
        font-size: 1.6rem;
    }
}




.wh1390 {
    max-width: 1420px;
    padding: 0 15px;
    margin: 0 auto;
}


.p5 {
    background: url(../images/bj22.jpg) no-repeat center center;
    padding: 5.7rem 0 4.8rem;
    background-size: cover;
}

.p5 .index-title h3 {
    color: #333333;
}

.p5 .index-title p {
    color: #333333;
}

.p5 .index-title p::after {
    background: rgb(155 206 251);
}

.p5a {
    margin-top: 4.4rem;
}

.p5a .p5-swiper {
    overflow: hidden;
}

.p5a .p5-swiper li a {
    display: block;
    overflow: hidden;
}

.p5a .p5-swiper li a img {
    width: 100%;
    transition: all ease .3s;
}

.p5a .p5-swiper li .p5a1:first-child {
    margin-bottom: 1.3rem;
}

.p5a .p5-swiper li .p5a1:hover a img {
    transform: scale(1.1);
}




.p5-pagination {
    margin-top: 3rem;
    text-align: center;
}

.p5-pagination .swiper-pagination-bullet {
    width: 1.15rem;
    height: 1.2rem;
    background-color: rgba(255, 255, 255, .5);
    opacity: 1;
    outline: none;
}

.p5a .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.6rem;
}


.p5-pagination .swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 1);
}


@media(max-width: 768px) {
    .p5a .p5-swiper li .p5a1:first-child {
        margin-bottom: 3%;
    }
}



.p6 {
    padding: 5.4rem 0 4.8rem;
}

.p6a1 h3 {
    font-size: 1.69rem;
    color: #333333;
    margin-bottom: 1rem;
}

.p6a1 p {
    font-size: 0.94rem;
    font-weight: normal;
    color: #999999;
}



.p6a2 {
    border-bottom: 3px solid #dbdbdb;
}

.p6a2 li {
    position: relative;
}

.p6a2 li a {
    display: block;
    line-height: 3.4rem;
    font-size: 0.94rem;
    font-weight: normal;
    color: #999999;
    padding: 0 0.4rem;
    position: relative;
    transition: all ease .2s;
}

.p6a2 li+li {
    margin-left: 2rem;
}

.p6a2 li a::after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    background: #007aff;
    opacity: 0;
    transition: all ease .2s;
}

.p6a2 li:hover a {
    color: #007aff;
}

.p6a2 li:hover a::after {
    opacity: 1;
}


.p6b-swiper {
    margin: 4.3rem -15px 0;
    overflow: hidden;
}

.p6b-swiper li {
    width: 33.47%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.p6b-swiper li a {
    box-shadow: 0px 3px 10px 0px #efefef;
    position: relative;
}

.p6b-swiper li a div.img {
    background: #fff;
    overflow: hidden;
}

.p6b-swiper li a div.img img {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all ease .3s;
}

.p6b-swiper li a .cont {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 4rem 2.5rem 0.5rem 1.8rem;
}

.p6b-swiper li a .cont:hover {
    background: rgba(0, 0, 0, 0.3);
}

.p6b-swiper li a .cont>h3 {
    font-size: 0.95rem;
    font-weight: normal;
    color: #454545;
    margin-bottom: 1.1rem;
}

.p6b-swiper li a .cont p {
    font-size: 12.69px;
    line-height: 2;
    color: #999999;
}

.p6b-swiper li a .cont span {
    width: 60px;
    height: 16px;
    border: solid 1px #b41112;
    display: block;
    background: url(../images/tt3.png) no-repeat center center;
    float: right;
    margin-top: 2.3rem;
    transition: all ease .3s;
}

.p6b-swiper li:hover a div.img img {
    opacity: 1;
}


.p6b-swiper li:hover a .cont span {
    border: solid 1px #fff;
    background: url(../images/tt4.png) no-repeat center center;
}

.p6b-swiper li:hover a .cont>h3 {
    color: #fff;
}

.p6b-swiper li:hover a .cont p {
    color: #fff;
}

.p6b-swiper li:hover a div.img img {
    transform: scale(1.1);
}




@media(max-width: 1440px) {
    .p6b-swiper li a .cont {
        padding: 1rem 1.5rem 0.5rem;
    }

    .p6b-swiper li a .cont span {
        margin-top: 1rem;
    }
}

@media(max-width: 1024px) {
    .p6b-swiper li a .cont p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
}

@media(max-width: 768px) {
    .p6b-swiper li {
        width: 60%;
    }
}

@media(max-width: 767px) {
    .p6b-swiper li {
        width: 65%;
    }

    .p6a1 h3 {
        font-size: 18px;
    }

    .p6a1 p {
        font-size: 14px;
    }

    .p6a2 li a {
        font-size: 14px;
    }

    .p6b-swiper li a .cont>h3 {
        font-size: 16px;
    }
}



.wh1300 {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}


.p7 {
    background: rgba(155,206,251,1);
    padding: 3.8rem 0 1.6rem;
}


.p7a {
    justify-content: flex-end;
}

.p7a h3.title {
    font-size: 16px;
    font-weight: normal;
    color: #d8d8d8;
    padding-bottom: 12px;
    border-bottom: 1px solid #676767;
    width: 80%;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.p7a1 {
    width: 23.28%;
}

.p7a1 .p7a1a {
    font-size: 14px;
    line-height: 2.14;
    color: #8e8e8e;
}



.p7a2 {
    width: 33.61%;
}

.p7a2 .p7a2a {
    font-size: 14px;
    line-height: 2.14;
    color: #8e8e8e;
}


.p7a3 {
    width: 27.46%;
}

.p7a3a img {
    width: 4.95rem;
    height: 4.95rem;
}

.p7a3a p {
    font-size: 12px;
    font-weight: normal;
    color: #8e8e8e;
    margin-top: 8px;
    color: #fff;
}



.p7a4 {
    width: 15.38%;
}

.p7a4a a:first-child {
    background: rgb(155 206 251) url(../images/tt6.png) no-repeat 23px center;
    margin-bottom: 14px;
}

.p7a4a a {
    display: block;
    width: 130px;
    height: 41px;
    line-height: 41px;
    padding-left: 49px;
    background: #302b26 url(../images/tt7.png) no-repeat 23px center;
    color: #fff;
}







.p8 {
    background: rgba(155,206,251,1);
}

.p8 .p8cont {
    border-top: 1px solid #4a4a4a;
    padding: 15px 0;
    font-size: 12px;
    font-weight: normal;
    color: #8e8e8e;
    text-align: center;
    border-top: 1px solid #fff;
    color: #fff;
}

.p8 .p8cont a {
    color: #8e8e8e;
    color: #fff;
}

.p8 .p8cont .x-seo {
    justify-content: center;
    letter-spacing: 1px;
}


#foot_formsearch {
    display: flex;
    justify-content: center;
    align-items: center;
}

#foot_formsearch input {
    outline: none;
    background: none;
    border: none;
}

#foot_formsearch input[name='wd'] {
    width: 340px;
    line-height: 15px;
    font-size: 12px;
    color: #8e8e8e;
    margin-right: 4px;
    color: #fff;
}

#foot_formsearch input[name='wd']::placeholder {
    color: #8e8e8e;
    color: #fff;
}

#foot_formsearch input[type='submit'] {
    width: 15px;
    height: 15px;
    background: url(../images/tsou.png) no-repeat center center;

}

@media(max-width: 1440px) {
    .p7a3 {
        width: 22.46%;
    }

    .p7a1 {
        width: 26.28%;
    }

    .p7a h3.title {
        font-size: 14px;
    }
}

@media(max-width: 768px) {
    .p7a1 {
        width: 50%;
        margin-bottom: 4%;
    }

    .p7a2 {
        width: 50%;
        margin-bottom: 4%;
    }

    .p7a3 {
        width: 50%;
    }

    .p7a4 {
        width: 50%;
    }
}

@media(max-width: 767px) {
    .p7a1 {
        width: 100%;
        margin-bottom: 4%;
    }

    .p7a2 {
        width: 100%;
        margin-bottom: 4%;
    }

    .p7a3 {
        width: 100%;
        margin-bottom: 4%;
    }

    .p7a4 {
        width: 100%;
        margin-bottom: 4%;
    }

    .p7a3a img {
        width: 8rem;
        height: 8rem;
    }
}

/* 友情链接 */

.c-link {
    font-size: 12px;
    color: #8e8e8e;
    color: #fff;
}

.c-link .con {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    width: auto;
}

.c-link span {
    cursor: pointer;
    display: block;
}

.c-link dd {
    max-width: calc(100% - 70px);
}

.c-link .sec {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: rgba(0, 0, 0, .6);
    padding: 10px;
    min-width: 120px;
    width: 100%;
}

.c-link a {
    color: #8e8e8e;
    padding: 0 4px;
    font-size: 14px;
    line-height: 24px;
}






.page-product-inquiry a {
    color: #fff;
}


@media (max-width: 992px) {
    body {
        padding-top: 60px;
        padding-bottom: 50px;
    }
}